home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 019a / tde10src.zip / HELP.H < prev    next >
Text File  |  1991-06-05  |  3KB  |  59 lines

  1. /*
  2.  * New editor name:  tde, the Thomson-Davis Editor.
  3.  * Author:           Frank Davis
  4.  * Date:             June 5, 1991
  5.  *
  6.  * This modification of Douglas Thomson's code is released into the
  7.  * public domain, Frank Davis.  You may distribute it freely.
  8.  *
  9.  * This is the info shown in the intro and popup help screen when F1 is pressed.
  10.  */
  11.  
  12. char *credit_screen[] = {
  13. "╒═════════════════════════════════════════════════════╕",
  14. "│                                                     │",
  15. "│             tde, the Thomson-Davis Editor           │",
  16. "│                      Version 1.0                    │",
  17. "│                                                     │",
  18. "│         This program is released into the           │",
  19. "│    public domain.  You may distribute it freely.    │",
  20. "│                                                     │",
  21. "╘═════════════════════════════════════════════════════╛",
  22. NULL
  23. };
  24.  
  25.  
  26. char *help_screen[] = {
  27. "╒══════════════════════════════════════════════════════════════════════════════╕",
  28. "│                     ^ = Control    # = Shift    @ = Alt                      │",
  29. "│    Cursor Movement              Block commands            File commands      │",
  30. "│   Up    - up line            @B - mark column block         F2 - save        │",
  31. "│   Down  - down line          @L - mark line block           F3 - quit        │",
  32. "│   Home  - begin of line      @U - unmark block              F4 - file        │",
  33. "│   End   - end of line        @G - group delete block       #F2 - save as     │",
  34. "│   PGUP  - page up            @M - move block               #F4 - edit file   │",
  35. "│   PGDN  - page down          @C - copy block                                 │",
  36. "│  ^Right - word right         @K - kopy block                                 │",
  37. "│  ^Left  - word left          @O - overlay block          Other commands      │",
  38. "│  ^Home  - top of screen      @P - print block           Del - delete char    │",
  39. "│  ^End   - bottom of screen   @W - write block to file   Tab - tab            │",
  40. "│  ^PGUP  - top of file        @E - block expand tabs     Ins - toggle insert  │",
  41. "│  ^PGDN  - bottom of file     @F - fill column block     @I  - toggle indent  │",
  42. "│  @Z     - jump (zip) to line                            @=  - dup line       │",
  43. "│  ^W     - scroll up           Find/Replace commands     @-  - delete to eol  │",
  44. "│  ^X     - scroll down       ^F5 - toggle search case    ^Y  - delete line    │",
  45. "│                             #F5 - find forward          @D  - delete line    │",
  46. "│      Window Commands        #F6 - find backward         @A  - add line       │",
  47. "│    F9  - split window        F5 - repeat find forward   @S  - split line     │",
  48. "│   #F9  - resize window       F6 - repeat find backward  @J  - join line      │",
  49. "│    F10 - next window        #F7 - replace forward       @T  - set tabs       │",
  50. "│   #F10 - previous window    #F8 - replace backward      ^]  - paren balance  │",
  51. "╘══════════════════════════════════════════════════════════════════════════════╛",
  52. NULL
  53. };
  54.  
  55.  
  56.  
  57.  
  58.  
  59.